View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy.http; 8 9 /*** 10 *@author owen 11 */ 12 final class IdHTTPMethod { 13 /*** 14 * Description of the Field 15 */ 16 public final static IdHTTPMethod HEAD = new IdHTTPMethod(); 17 18 /*** 19 * Description of the Field 20 */ 21 public final static IdHTTPMethod GET = new IdHTTPMethod(); 22 23 /*** 24 * Description of the Field 25 */ 26 public final static IdHTTPMethod POST = new IdHTTPMethod(); 27 28 /*** 29 * Description of the Field 30 */ 31 public final static IdHTTPMethod OPTIONS = new IdHTTPMethod(); 32 33 /*** 34 * Description of the Field 35 */ 36 public final static IdHTTPMethod TRACE = new IdHTTPMethod(); 37 38 /*** 39 * Description of the Field 40 */ 41 public final static IdHTTPMethod PUT = new IdHTTPMethod(); 42 43 /*** 44 * Description of the Field 45 */ 46 public final static IdHTTPMethod DELETE = new IdHTTPMethod(); 47 48 /*** 49 * Description of the Field 50 */ 51 public final static IdHTTPMethod CONNECT = new IdHTTPMethod(); 52 53 private IdHTTPMethod() { 54 } 55 }

This page was automatically generated by Maven